home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat2 / xnumb.2 < prev    next >
Text File  |  1999-09-16  |  783b  |  67 lines

  1.  
  2.  
  3.  
  4. xnumb(2)                       Scilab Function                       xnumb(2)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   xnumb - draw numbers on a graphic
  13.  
  14. CALLING SEQUENCE
  15.   xnumb(x,y,nums,[flag,angle])
  16.  
  17. PARAMETERS
  18.  
  19.   x,y,nums
  20.        : vectors or matrices of same size
  21.  
  22.   flag : an integer value
  23.  
  24.   angle
  25.        : a vector of the same size as x,y,nums
  26.  
  27. DESCRIPTION
  28.   Displays the value of nums[i] using the current number format at position
  29.   x[i],y[i] in the current scale.  if flag is 1 a frame box is added around
  30.   the strings.  if angle is present it's a vector. angle[i] gives the slope
  31.   in degree (clockwise) to use  for the display of the string.
  32.  
  33. EXAMPLE
  34.   plot2d([-100,500],[-100,600],[-1,-1],"022");
  35.   x=0:100:200;
  36.   xnumb(x,500*ones(x),[10,20,35],1);
  37.  
  38. AUTHOR
  39.   J.Ph.C.
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.